home *** CD-ROM | disk | FTP | other *** search
/ Thinkin' Science - 1st & 2nd Grades / Thinkin' Science - First and Second Grades (Edmark)(Version 1.0)(1997).ISO / pc / dearpar / dpdata / dp.dir / 00001_Script_1 next >
Text File  |  1997-09-03  |  482b  |  17 lines

  1. on enterFrame
  2.   global gWhere
  3.   if gWhere = "dp_12" then
  4.     -- hide the big video art
  5.     -- show the small video window art
  6.     set the visible of sprite 2 to FALSE
  7.     set the visible of sprite 10 to TRUE
  8.   else
  9.     -- hide the small video window art
  10.     -- show the big video art
  11.     set the visible of sprite 10 to FALSE
  12.     set the visible of sprite 2 to TRUE
  13.   end if
  14.   updateStage
  15.   -- set the mouseDownScript to empty
  16.   -- set the mouseUpScript to empty
  17. end